{
  "bundles": [
    {
      "@type": "NXBundle",
      "artifactId": "nuxeo-platform-video-convert",
      "artifactVersion": "7.10",
      "bundleGroup": {
        "@type": "NXBundleGroup",
        "bundleIds": [
          "org.nuxeo.ecm.platform.video.api",
          "org.nuxeo.ecm.platform.video.convert",
          "org.nuxeo.ecm.platform.video.core",
          "org.nuxeo.ecm.platform.video.jsf"
        ],
        "hierarchyPath": "/grp:org.nuxeo.ecm.platform/grp:org.nuxeo.ecm.platform.video",
        "id": "grp:org.nuxeo.ecm.platform.video",
        "name": "org.nuxeo.ecm.platform.video",
        "parentIds": [
          "grp:org.nuxeo.ecm.platform"
        ],
        "readmes": [],
        "version": "7.10"
      },
      "bundleId": "org.nuxeo.ecm.platform.video.convert",
      "components": [
        {
          "@type": "NXComponent",
          "documentationHtml": "",
          "extensionPoints": [],
          "extensions": [
            {
              "@type": "NXContribution",
              "documentationHtml": "",
              "extensionPoint": "org.nuxeo.ecm.platform.commandline.executor.service.CommandLineExecutorComponent--command",
              "hierarchyPath": "/grp:org.nuxeo.ecm.platform/grp:org.nuxeo.ecm.platform.video/org.nuxeo.ecm.platform.video.convert/org.nuxeo.ecm.platform.video.convert.commandline/Contributions/org.nuxeo.ecm.platform.video.convert.commandline--command",
              "id": "org.nuxeo.ecm.platform.video.convert.commandline--command",
              "targetComponentName": {
                "rawName": "service:org.nuxeo.ecm.platform.commandline.executor.service.CommandLineExecutorComponent",
                "name": "org.nuxeo.ecm.platform.commandline.executor.service.CommandLineExecutorComponent",
                "type": "service"
              },
              "version": "7.10",
              "xml": "<extension point=\"command\" target=\"org.nuxeo.ecm.platform.commandline.executor.service.CommandLineExecutorComponent\">\n\n    <command enabled=\"true\" name=\"ffmpeg-info\">\n      <commandLine>ffprobe</commandLine>\n      <parameterString> #{inFilePath}</parameterString>\n      <installationDirective>You need to install ffmpeg from http://ffmpeg.org (apt-get install ffmpeg)\n      </installationDirective>\n    </command>\n\n    <command enabled=\"true\" name=\"ffmpeg-screenshot\">\n      <commandLine>ffmpeg</commandLine>\n      <!-- It's important to put the -ss option before the -i option for\n        faster (though less accurate) seek / skip to position in the input file -->\n      <parameterString> -y -ss #{position} -i #{inFilePath} -vframes 1 -f image2 #{outFilePath}</parameterString>\n      <installationDirective>You need to install ffmpeg from http://ffmpeg.org (apt-get install ffmpeg)\n      </installationDirective>\n    </command>\n\n    <command enabled=\"true\" name=\"ffmpeg-screenshot-resize\">\n      <commandLine>ffmpeg</commandLine>\n      <!-- It's important to put the -ss option before the -i option for faster\n        (though less accurate) seek / skip to position in the input file.\n\n        The -vframes 1 option tell to take only one screenshot. This is\n        necessary as apparent the use of the \"-s\" option forces ffmpeg to\n        switch in \"many output files\" mode.\n      -->\n      <parameterString> -y -ss #{position} -i #{inFilePath} -vframes 1 -f image2 -s #{width}x#{height} #{outFilePath}</parameterString>\n      <installationDirective>You need to install ffmpeg from http://ffmpeg.org (apt-get install ffmpeg)\n      </installationDirective>\n    </command>\n\n    <command enabled=\"true\" name=\"ffmpeg-towebm\">\n      <commandLine>ffmpeg</commandLine>\n      <parameterString> -i #{inFilePath} -s #{width}x#{height} -acodec libvorbis -v 0 #{outFilePath}</parameterString>\n      <installationDirective>You need to install ffmpeg from http://ffmpeg.org (apt-get install ffmpeg)\n      </installationDirective>\n    </command>\n\n    <command enabled=\"true\" name=\"ffmpeg-tomp4\">\n      <commandLine>ffmpeg</commandLine>\n      <parameterString> -i #{inFilePath} -s #{width}x#{height} -acodec libfaac -vcodec libx264 -v 0 #{outFilePath}</parameterString>\n      <winParameterString> -i #{inFilePath} -s #{width}x#{height} -vcodec libx264 -v 0 #{outFilePath}</winParameterString>\n      <installationDirective>You need to install ffmpeg from http://ffmpeg.org (apt-get install ffmpeg)\n      </installationDirective>\n    </command>\n\n    <command enabled=\"true\" name=\"ffmpeg-toogg\">\n      <commandLine>ffmpeg</commandLine>\n      <parameterString> -i #{inFilePath} -s #{width}x#{height} -acodec libvorbis -v 0 #{outFilePath}</parameterString>\n      <installationDirective>You need to install ffmpeg from http://ffmpeg.org (apt-get install ffmpeg)\n      </installationDirective>\n    </command>\n\n  </extension>"
            }
          ],
          "hierarchyPath": "/grp:org.nuxeo.ecm.platform/grp:org.nuxeo.ecm.platform.video/org.nuxeo.ecm.platform.video.convert/org.nuxeo.ecm.platform.video.convert.commandline",
          "name": "org.nuxeo.ecm.platform.video.convert.commandline",
          "requirements": [],
          "services": [],
          "version": "7.10",
          "xmlFileContent": "<?xml version=\"1.0\"?>\n<component name=\"org.nuxeo.ecm.platform.video.convert.commandline\">\n\n  <require>org.nuxeo.ecm.platform.commandline.executor.service.defaultContrib\n  </require>\n\n  <extension\n    target=\"org.nuxeo.ecm.platform.commandline.executor.service.CommandLineExecutorComponent\"\n    point=\"command\">\n\n    <command name=\"ffmpeg-info\" enabled=\"true\">\n      <commandLine>ffprobe</commandLine>\n      <parameterString> #{inFilePath}</parameterString>\n      <installationDirective>You need to install ffmpeg from http://ffmpeg.org (apt-get install ffmpeg)\n      </installationDirective>\n    </command>\n\n    <command name=\"ffmpeg-screenshot\" enabled=\"true\">\n      <commandLine>ffmpeg</commandLine>\n      <!-- It's important to put the -ss option before the -i option for\n        faster (though less accurate) seek / skip to position in the input file -->\n      <parameterString> -y -ss #{position} -i #{inFilePath} -vframes 1 -f image2 #{outFilePath}</parameterString>\n      <installationDirective>You need to install ffmpeg from http://ffmpeg.org (apt-get install ffmpeg)\n      </installationDirective>\n    </command>\n\n    <command name=\"ffmpeg-screenshot-resize\" enabled=\"true\">\n      <commandLine>ffmpeg</commandLine>\n      <!-- It's important to put the -ss option before the -i option for faster\n        (though less accurate) seek / skip to position in the input file.\n\n        The -vframes 1 option tell to take only one screenshot. This is\n        necessary as apparent the use of the \"-s\" option forces ffmpeg to\n        switch in \"many output files\" mode.\n      -->\n      <parameterString> -y -ss #{position} -i #{inFilePath} -vframes 1 -f image2 -s #{width}x#{height} #{outFilePath}</parameterString>\n      <installationDirective>You need to install ffmpeg from http://ffmpeg.org (apt-get install ffmpeg)\n      </installationDirective>\n    </command>\n\n    <command name=\"ffmpeg-towebm\" enabled=\"true\">\n      <commandLine>ffmpeg</commandLine>\n      <parameterString> -i #{inFilePath} -s #{width}x#{height} -acodec libvorbis -v 0 #{outFilePath}</parameterString>\n      <installationDirective>You need to install ffmpeg from http://ffmpeg.org (apt-get install ffmpeg)\n      </installationDirective>\n    </command>\n\n    <command name=\"ffmpeg-tomp4\" enabled=\"true\">\n      <commandLine>ffmpeg</commandLine>\n      <parameterString> -i #{inFilePath} -s #{width}x#{height} -acodec libfaac -vcodec libx264 -v 0 #{outFilePath}</parameterString>\n      <winParameterString> -i #{inFilePath} -s #{width}x#{height} -vcodec libx264 -v 0 #{outFilePath}</winParameterString>\n      <installationDirective>You need to install ffmpeg from http://ffmpeg.org (apt-get install ffmpeg)\n      </installationDirective>\n    </command>\n\n    <command name=\"ffmpeg-toogg\" enabled=\"true\">\n      <commandLine>ffmpeg</commandLine>\n      <parameterString> -i #{inFilePath} -s #{width}x#{height} -acodec libvorbis -v 0 #{outFilePath}</parameterString>\n      <installationDirective>You need to install ffmpeg from http://ffmpeg.org (apt-get install ffmpeg)\n      </installationDirective>\n    </command>\n\n  </extension>\n\n</component>\n",
          "xmlFileName": "/OSGI-INF/commandline-contrib.xml",
          "xmlPureComponent": true
        },
        {
          "@type": "NXComponent",
          "documentationHtml": "",
          "extensionPoints": [],
          "extensions": [
            {
              "@type": "NXContribution",
              "documentationHtml": "",
              "extensionPoint": "org.nuxeo.ecm.core.convert.service.ConversionServiceImpl--converter",
              "hierarchyPath": "/grp:org.nuxeo.ecm.platform/grp:org.nuxeo.ecm.platform.video/org.nuxeo.ecm.platform.video.convert/org.nuxeo.ecm.platform.video.convert.converters/Contributions/org.nuxeo.ecm.platform.video.convert.converters--converter",
              "id": "org.nuxeo.ecm.platform.video.convert.converters--converter",
              "targetComponentName": {
                "rawName": "service:org.nuxeo.ecm.core.convert.service.ConversionServiceImpl",
                "name": "org.nuxeo.ecm.core.convert.service.ConversionServiceImpl",
                "type": "service"
              },
              "version": "7.10",
              "xml": "<extension point=\"converter\" target=\"org.nuxeo.ecm.core.convert.service.ConversionServiceImpl\">\n\n    <converter class=\"org.nuxeo.ecm.platform.video.convert.StoryboardConverter\" name=\"videoStoryboard\">\n      <sourceMimeType>video/mpeg</sourceMimeType>\n      <sourceMimeType>video/mp4</sourceMimeType>\n      <sourceMimeType>video/quicktime</sourceMimeType>\n      <sourceMimeType>video/ogg</sourceMimeType>\n      <sourceMimeType>video/x-ms-asf</sourceMimeType>\n      <sourceMimeType>video/x-msvideo</sourceMimeType>\n      <sourceMimeType>video/flv</sourceMimeType>\n      <destinationMimeType>image/jpeg</destinationMimeType>\n    </converter>\n\n    <converter class=\"org.nuxeo.ecm.platform.video.convert.ScreenshotConverter\" name=\"videoScreenshot\">\n      <sourceMimeType>video/mpeg</sourceMimeType>\n      <sourceMimeType>video/mp4</sourceMimeType>\n      <sourceMimeType>video/quicktime</sourceMimeType>\n      <sourceMimeType>video/ogg</sourceMimeType>\n      <sourceMimeType>video/x-ms-asf</sourceMimeType>\n      <sourceMimeType>video/x-msvideo</sourceMimeType>\n      <sourceMimeType>video/flv</sourceMimeType>\n      <destinationMimeType>image/jpeg</destinationMimeType>\n    </converter>\n\n    <converter class=\"org.nuxeo.ecm.platform.video.convert.VideoConversionConverter\" name=\"convertToWebM\">\n      <sourceMimeType>video/mpeg</sourceMimeType>\n      <sourceMimeType>video/mp4</sourceMimeType>\n      <sourceMimeType>video/quicktime</sourceMimeType>\n      <sourceMimeType>video/ogg</sourceMimeType>\n      <sourceMimeType>video/x-ms-asf</sourceMimeType>\n      <sourceMimeType>video/x-msvideo</sourceMimeType>\n      <sourceMimeType>video/flv</sourceMimeType>\n      <destinationMimeType>video/webm</destinationMimeType>\n      <parameters>\n        <parameter name=\"CommandLineName\">ffmpeg-towebm</parameter>\n        <parameter name=\"videoMimeType\">video/webm</parameter>\n        <parameter name=\"videoExtension\">webm</parameter>\n        <parameter name=\"tmpDirectoryPrefix\">convertToWebM</parameter>\n      </parameters>\n    </converter>\n\n    <converter class=\"org.nuxeo.ecm.platform.video.convert.VideoConversionConverter\" name=\"convertToMP4\">\n      <sourceMimeType>video/mpeg</sourceMimeType>\n      <sourceMimeType>video/webm</sourceMimeType>\n      <sourceMimeType>video/quicktime</sourceMimeType>\n      <sourceMimeType>video/ogg</sourceMimeType>\n      <sourceMimeType>video/x-ms-asf</sourceMimeType>\n      <sourceMimeType>video/x-msvideo</sourceMimeType>\n      <sourceMimeType>video/flv</sourceMimeType>\n      <destinationMimeType>video/mp4</destinationMimeType>\n      <parameters>\n        <parameter name=\"CommandLineName\">ffmpeg-tomp4</parameter>\n        <parameter name=\"videoMimeType\">video/mp4</parameter>\n        <parameter name=\"videoExtension\">mp4</parameter>\n        <parameter name=\"tmpDirectoryPrefix\">convertToMP4</parameter>\n      </parameters>\n    </converter>\n\n    <converter class=\"org.nuxeo.ecm.platform.video.convert.VideoConversionConverter\" name=\"convertToOgg\">\n      <sourceMimeType>video/mpeg</sourceMimeType>\n      <sourceMimeType>video/mp4</sourceMimeType>\n      <sourceMimeType>video/quicktime</sourceMimeType>\n      <sourceMimeType>video/webm</sourceMimeType>\n      <sourceMimeType>video/x-ms-asf</sourceMimeType>\n      <sourceMimeType>video/x-msvideo</sourceMimeType>\n      <sourceMimeType>video/flv</sourceMimeType>\n      <destinationMimeType>video/ogg</destinationMimeType>\n      <parameters>\n        <parameter name=\"CommandLineName\">ffmpeg-toogg</parameter>\n        <parameter name=\"videoMimeType\">video/ogg</parameter>\n        <parameter name=\"videoExtension\">ogg</parameter>\n        <parameter name=\"tmpDirectoryPrefix\">convertToOgg</parameter>\n      </parameters>\n    </converter>\n\n  </extension>"
            }
          ],
          "hierarchyPath": "/grp:org.nuxeo.ecm.platform/grp:org.nuxeo.ecm.platform.video/org.nuxeo.ecm.platform.video.convert/org.nuxeo.ecm.platform.video.convert.converters",
          "name": "org.nuxeo.ecm.platform.video.convert.converters",
          "requirements": [],
          "services": [],
          "version": "7.10",
          "xmlFileContent": "<?xml version=\"1.0\"?>\n<component name=\"org.nuxeo.ecm.platform.video.convert.converters\">\n\n  <extension target=\"org.nuxeo.ecm.core.convert.service.ConversionServiceImpl\"\n    point=\"converter\">\n\n    <converter name=\"videoStoryboard\"\n      class=\"org.nuxeo.ecm.platform.video.convert.StoryboardConverter\">\n      <sourceMimeType>video/mpeg</sourceMimeType>\n      <sourceMimeType>video/mp4</sourceMimeType>\n      <sourceMimeType>video/quicktime</sourceMimeType>\n      <sourceMimeType>video/ogg</sourceMimeType>\n      <sourceMimeType>video/x-ms-asf</sourceMimeType>\n      <sourceMimeType>video/x-msvideo</sourceMimeType>\n      <sourceMimeType>video/flv</sourceMimeType>\n      <destinationMimeType>image/jpeg</destinationMimeType>\n    </converter>\n\n    <converter name=\"videoScreenshot\"\n      class=\"org.nuxeo.ecm.platform.video.convert.ScreenshotConverter\">\n      <sourceMimeType>video/mpeg</sourceMimeType>\n      <sourceMimeType>video/mp4</sourceMimeType>\n      <sourceMimeType>video/quicktime</sourceMimeType>\n      <sourceMimeType>video/ogg</sourceMimeType>\n      <sourceMimeType>video/x-ms-asf</sourceMimeType>\n      <sourceMimeType>video/x-msvideo</sourceMimeType>\n      <sourceMimeType>video/flv</sourceMimeType>\n      <destinationMimeType>image/jpeg</destinationMimeType>\n    </converter>\n\n    <converter name=\"convertToWebM\"\n      class=\"org.nuxeo.ecm.platform.video.convert.VideoConversionConverter\">\n      <sourceMimeType>video/mpeg</sourceMimeType>\n      <sourceMimeType>video/mp4</sourceMimeType>\n      <sourceMimeType>video/quicktime</sourceMimeType>\n      <sourceMimeType>video/ogg</sourceMimeType>\n      <sourceMimeType>video/x-ms-asf</sourceMimeType>\n      <sourceMimeType>video/x-msvideo</sourceMimeType>\n      <sourceMimeType>video/flv</sourceMimeType>\n      <destinationMimeType>video/webm</destinationMimeType>\n      <parameters>\n        <parameter name=\"CommandLineName\">ffmpeg-towebm</parameter>\n        <parameter name=\"videoMimeType\">video/webm</parameter>\n        <parameter name=\"videoExtension\">webm</parameter>\n        <parameter name=\"tmpDirectoryPrefix\">convertToWebM</parameter>\n      </parameters>\n    </converter>\n\n    <converter name=\"convertToMP4\"\n      class=\"org.nuxeo.ecm.platform.video.convert.VideoConversionConverter\">\n      <sourceMimeType>video/mpeg</sourceMimeType>\n      <sourceMimeType>video/webm</sourceMimeType>\n      <sourceMimeType>video/quicktime</sourceMimeType>\n      <sourceMimeType>video/ogg</sourceMimeType>\n      <sourceMimeType>video/x-ms-asf</sourceMimeType>\n      <sourceMimeType>video/x-msvideo</sourceMimeType>\n      <sourceMimeType>video/flv</sourceMimeType>\n      <destinationMimeType>video/mp4</destinationMimeType>\n      <parameters>\n        <parameter name=\"CommandLineName\">ffmpeg-tomp4</parameter>\n        <parameter name=\"videoMimeType\">video/mp4</parameter>\n        <parameter name=\"videoExtension\">mp4</parameter>\n        <parameter name=\"tmpDirectoryPrefix\">convertToMP4</parameter>\n      </parameters>\n    </converter>\n\n    <converter name=\"convertToOgg\"\n      class=\"org.nuxeo.ecm.platform.video.convert.VideoConversionConverter\">\n      <sourceMimeType>video/mpeg</sourceMimeType>\n      <sourceMimeType>video/mp4</sourceMimeType>\n      <sourceMimeType>video/quicktime</sourceMimeType>\n      <sourceMimeType>video/webm</sourceMimeType>\n      <sourceMimeType>video/x-ms-asf</sourceMimeType>\n      <sourceMimeType>video/x-msvideo</sourceMimeType>\n      <sourceMimeType>video/flv</sourceMimeType>\n      <destinationMimeType>video/ogg</destinationMimeType>\n      <parameters>\n        <parameter name=\"CommandLineName\">ffmpeg-toogg</parameter>\n        <parameter name=\"videoMimeType\">video/ogg</parameter>\n        <parameter name=\"videoExtension\">ogg</parameter>\n        <parameter name=\"tmpDirectoryPrefix\">convertToOgg</parameter>\n      </parameters>\n    </converter>\n\n  </extension>\n\n</component>\n",
          "xmlFileName": "/OSGI-INF/convert-service-contrib.xml",
          "xmlPureComponent": true
        }
      ],
      "fileName": "nuxeo-platform-video-convert-7.10.jar",
      "groupId": "org.nuxeo.ecm.platform",
      "hierarchyPath": "/grp:org.nuxeo.ecm.platform/grp:org.nuxeo.ecm.platform.video/org.nuxeo.ecm.platform.video.convert",
      "id": "org.nuxeo.ecm.platform.video.convert",
      "location": "",
      "manifest": "Manifest-Version: 1.0\r\nArchiver-Version: Plexus Archiver\r\nCreated-By: Apache Maven\r\nBuilt-By: hudson\r\nBuild-Jdk: 1.8.0_60\r\nBundle-ManifestVersion: 2\r\nBundle-Version: 7.10-t20151109-201829\r\nBundle-Name: Nuxeo Video Convert\r\nBundle-SymbolicName: org.nuxeo.ecm.platform.video.convert\r\nBundle-Vendor: Nuxeo\r\nBundle-Localization: plugin\r\nBundle-Category: core,stateful\r\nRequire-Bundle: org.nuxeo.ecm.core.api,org.nuxeo.ecm.platform.commandl\r\n ine.executor,org.nuxeo.ecm.core.convert\r\nExport-Package: org.nuxeo.ecm.platform.video.convert\r\nNuxeo-Component: OSGI-INF/commandline-contrib.xml,OSGI-INF/convert-ser\r\n vice-contrib.xml\r\n\r\n",
      "packages": [],
      "requirements": [],
      "version": "7.10"
    }
  ],
  "creationDate": 1664792867649,
  "key": "Nuxeo Platform LTS 2015-7.10",
  "name": "Nuxeo Platform LTS 2015",
  "operations": [],
  "packages": [],
  "pluginSnapshots": {},
  "releaseDate": 1447023600000,
  "version": "7.10"
}